:root {
    --primary-color: #7746b4;
    --primary-color-d2: #7746b4;
}

:input:-webkit-autofill {
    background-color: #fff;
}

[disabled] {
    cursor: not-allowed;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: 'Hind';
    font-size: .9em;
    line-height: 1.5;
}

.body--dark {
    background-color: #f0f0f0;
}

.body--gradient {
    background: var(--primary-color);
    background-image: linear-gradient(to bottom, var(--primary-color), var(--primary-color-d2));
    background-size: cover;
    background-repeat: no-repeat;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.container {
    max-width: 1024px;
    margin: auto;
}

.header {
    padding: 0 5.5em;
    position: fixed;
    top: 3%;
    left: 0%;
    right: 0%;
    z-index: 100;
    transition: all ease-in-out .2s;
}

.header::after {
    content: ' ';
    clear: both;
    display: block;
}

.header__logo {
    float: left;
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__nav {
    float: right;
}

.header__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav li {
    float: left;
}

.header__nav a {
    border-radius: 10em;
    color: #fff;
    display: block;
    margin: 1em 0;
    padding: .5em 1.8em;
    transition: all ease-in-out .2s;
}

.header__nav a:hover {
    background: #f0f0f0;
    color: var(--primary-color) !important;
}

.header.header--is-active {
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .15);
    top: 0%;
}

.header.header.header--is-active .header__nav a {
    color: var(--primary-color);
}

.landing {
    height: 700px;
    position: relative;
}

.landing__background {
    background: #fff url('../images/amazing-breathtaking-clouds-1958782.jpg') no-repeat;
    background-position: center right;
    background-size: cover;
    position: absolute;
    top: 0%;
    bottom: 0%;
    right: 0%;
    left: 0%;
    z-index: 0;
}

.landing__foreground {
    background: rgba(0, 0, 0, .4);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .9));
    padding: 15em 0 0 0;
    position: relative;
    height: 100%;
    z-index: 1;
}

.landing__foreground::after,
.landing__foreground::before {
    background-color: rgba(50, 69, 178, .05);
    animation: breathing 3s linear infinite;
    border-radius: 100%;
    content: ' ';
    display: block;
    height: 150px;
    width: 150px;
    position: absolute;
}

.landing__foreground::after {
    left: -5.5%;
    bottom: -80%;
}

.landing__foreground::before {
    left: 30%;
}

.landing__content {
    color: #fff;
    margin: 0 6em 0 10em;
    text-align: center;
}

.landing__title {
    font-size: 3.2em;
    text-transform: capitalize;
}

.landing__subtitle {
    color: #d0d0d0;
    display: inline-block;
    font-size: 1.3em;
    max-width: 700px;
}

.landing__btn {
    padding: 3em 0 0;
}

.card {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, .15);
}

/** -- buttons -- **/
.btn {
    background: var(--primary-color);
    border: none;
    border-radius: 10em;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    padding: .5em 1em;
    transition: all ease-in-out .2s;
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-color-d2);
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-d2));
}

.btn--spaced {
    padding: .8em 1.4em;
}

.btn--small {
    font-size: .8em;
}

/** -- utilitiees --  **/
.bold {
    font-weight: bold;
}

.padded {
    padding: 1em;
}

.padded-top {
    padding-top: 1em;
}

.padded-left {
    padding-left: 1em;
}

.spaced-no-top {
    margin-top: 0 !important;
}

.spaced-no-bottom {
    margin-bottom: 0 !important;
}

.is-centered {
    text-align: center;
}

.is-to-right {
    text-align: right !important;
}

.is-to-left {
    text-align: left !important;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clearfix {
    clear: both;
}

/** -- containers -- **/
.hero {
    display: block;
    padding: 10em;
    margin: 5em 0 0 0;
}

.hero--small {
    padding: 5em;
    margin: 0;
}

.hero--grey {
    background: #fafafa;
}

.hero--bg {
    background-color: var(--primary-color);
}

.hero--image {
    padding: 0;
    position: relative;
}

.hero--gradient {
    background: var(--primary-color);
    background: linear-gradient(75deg, var(--primary-color), var(--primary-color-d2));
}

.hero__title {
    font-size: 1.9em;
    margin: 0;
    padding: 0;
    text-align: center;
}

.hero__background {
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
}

.hero__foreground {
    background: rgba(255, 255, 255, .85);
    padding: 10em;
    position: relative;
    z-index: 1;
}

.hero__title::after {
    border-bottom: 2px solid #3245B2;
    content: '';
    display: block;
    margin: .4em auto;
    width: 100px;
}

.feature {
    background-color: #fff;
    border-radius: .3em;
    margin: 5em 1em 1em 1em;
    padding: 4em 0;
    position: relative;
}

.feature__image-container {
    position: absolute;
    top: -20%;
    left: 0%;
    right: 0%;
    text-align: center;
}

.feature__image {
    box-shadow: 0px 3px 50px rgba(0, 0, 0, .15);
    border-radius: 100%;
    display: inline-block;
    height: 100px;
    width: auto;
}

.feature__title {
    font-weight: bold;
    padding: 2em 1em 1.5em 1em;
    text-transform: uppercase;
}

.feature__text {
    color: #777;
    padding: 0 2em;
    line-height: 1.7;
}

.auth {
    background: #fff;
    border-radius: .2em;
    box-shadow: 0px 3px 40px rgba(0, 0, 0, .4);
    max-width: 370px;
    margin: auto;
    margin-top: 10%;
    margin-bottom: 10%;
    position: relative;
}

.auth__logo {
    text-align: center;
}

.auth__logo img {
    display: inline-block;
    width: 180px;
    height: auto;
}

.auth__title {
    margin: 0;
    padding: 1.4em 1em .2em 1em;
    text-align: center;
    text-transform: uppercase;
}

.auth__subtitle {
    color: #555;
    font-size: .9em;
    text-align: center;
}

.input-container {
    margin: 2em;
    position: relative;
}

.input {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #e0e0e0;
    display: block;
    font-size: 1em;
    height: 40px;
    width: 100%;
    font-family: inherit;
    margin: 1em 0 0 0;
    outline: none;
    position: relative;
    z-index: 1;
}

.input:focus {
    border-color: var(--primary-color);
}

.input-label {
    display: block;
    position: absolute;
    bottom: 10px;
    transition: all ease-in-out .2s;
    z-index: 0;
}

.input-checkbox {
    cursor: pointer;
    background: #fafafa;
    border-radius: .2em;
    padding: .5em 1em;
    margin: 0 2em;
}

.input:focus + .input-label,
.input-label.is-active {
    color: #777;
    font-size: .8em;
    font-weight: bold;
    bottom: 90%;
}

.input-btn {
    text-align: center;
    padding: 1.5em 25%;
}

.input-btn .btn {
    border-radius: 5em !important;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, .2);
    font-size: 1em;
    display: block;
    padding: 1em 1.8em;
    position: absolute;
    left: 50px;
    width: calc(100% - 100px);
}

/** -- alert -- **/
.alert {
    border-radius: .3em;
    padding: .6em 1em;
    margin: 1em;
    text-align: center;
}

.alert-error {
    color: #922b2b;
    background-color: #ffecec;
}

.alert-success {
    color: #316b31;
    background-color: #d5ffd5;
}

.alert-info {
    color: #3636a7;
    background-color: #dfdfff;
}

.alert-warning {
    color: #696927;
    background-color: #ffffd3;
}

.color-white {
    color: #fff !important;
}

.dash-header {
    background-color: var(--primary-color);
    color: #fff;
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    z-index: 100;
}

.dash-header a {
    color: #fff;
    display: inline-block;
    margin: 0 .4em;
}

.sidebar {
    background: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .2);
    position: fixed;
    left: 1em;
    top: 4.5em;
    bottom: 1em;
    width: 250px;
    overflow: scroll;
}

.sidebar__top {
    background-color: #f0f0f0;
    border-bottom: 3px solid #e0e0e0;
    font-weight: bold;
    padding: 1em;
    text-align: center;
}

.sidebar__balance {
    font-size: 2em;
}

.sidebar__content {
    padding: 1em;
}

.sidebar__content ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidebar__content a {
    color: var(--primary-color);
    border-radius: .3em;
    display: block;
    padding: 1em;
    margin: .5em 0;
    transition: all ease-in-out .2s;
}

.sidebar__content a:hover,
.sidebar__content a.is-active {
    background-color: var(--primary-color);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, .15);
    color: #fff;
    font-weight: bold;
}

.main__content {
    margin: 4em 0 0 calc(250px + 2em);
}

.dashboard__title {
    color: #444;
    margin: 0;
    padding: .5em .5em 0 .5em;
}

.ddata {
    border-radius: .35em;
    color: #fff;
    margin: 1em;
    overflow: hidden;
    padding: 1em;
    position: relative;
}

.ddata--green {
    background: green;
    background: linear-gradient(#3ac93a, #0d580d);
}

.ddata--red {
    background: red;
    background: linear-gradient(#e44747, #961d1d);
}

.ddata--yellow {
    background: yellow;
    background: linear-gradient(#a3a30d, #4e4e10);
}

.ddata--blue {
    background: blue;
    background: linear-gradient(#4949d1, #050574);
}

.ddata__count {
    font-weight: bold;
    font-size: 2em;
    padding: 0 2em;
}

.ddata__icon {
    color: rgba(255, 255, 255, .34);
    font-size: 4em;
    position: absolute;
    top: 5%;
    right: 5%;
}

.table {
    width: 100%;
}

.table thead {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .07);
}

.table thead td {
    background: #fafafa;
    font-weight: bold;
}

.table td {
    background: #fff;
    padding: .7em 1em;
}

.table tbody td {
    border-bottom: 1px dashed #f0f0f0;
}

.pill {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pill::after {
    content: ' ';
    clear: both;
    display: block;
}

.pill li {
    float: left;
}

.pill a {
    background: #e0e0e0;
    border-radius: 3em;
    color: #000;
    display: block;
    font-size: .95em;
    padding: .2em .9em;
    margin: .5em;
}

.item-content {
    background: #fff;
    border-radius: .2em;
    margin: 1em;
    padding: 1em 0;
}

.ticket-msg {
    background-color: #f0f0f0;
    border-radius: .2em;
    padding: 1em;
    margin: 1em;
}

.clist {
    list-style: square inside;
}

.clist li {
    margin: 1em 0;
}

.block {
    display: block;
}

.stat {
    background: var(--primary-color);
    background: linear-gradient(75deg, var(--primary-color), var(--primary-color-d2));
    border-radius: .3em;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, .2);
    color: #fff;
    text-align: center;
    margin: 1em;
}

.stat-icon {
    padding: 1em 0 0 0;
}

.stat-count {
    font-weight: bold;
    font-size: 2.1em;
    font-weight: bold;
    padding: .4em;
}

.stat-title {
     padding: .5em 1em 1em 1em;
     text-transform: uppercase;
}

.footer {
    background-color: #010111;
}

.footer__top-links {
    background-color: #0a0a1f;
    color: #fff;
    padding: 1em;
    text-align: center;
}

.footer__top-links a {
    color: #fff;
    display: inline-block;
    padding: .5em;
}

.footer__list {
    list-style: none;
    margin: 4em 1em;
}

.footer__list li {
    margin: 1em;
}

.footer__list a {
    color: #fff;
}

.footer__copy {
    color: #fff;
    padding: 2em;
}

.footer__copy a {
    color: #fff;
}

.m-only {
    display: none;
}

.static-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 7em 1em 1em 1em;
    text-align: center;
}

.package {
    background: #fff;
    border-radius: .3em;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .07);
    margin: 1em;
}

.package__name {
    border-bottom: 1px dashed #f0f0f0;
    font-weight: bold;
    padding: 1em;
    margin: 1em;
    text-align: center;
    text-transform: uppercase;
}

.package__values {
    text-align: center;
}

.package__values div {
    font-size: 1.6em;
}

.faq {
    background-color: #28388f;
    border-radius: .4em;
    color: #fff;
    margin: 1em;
}

.faq__title {
    font-weight: bold;
    font-size: 1.4em;
    padding: 1em;
}

.faq__title a {
    color: #fff;
}

.faq__title .fa {
    background-color: #fff;
    color: #050574;
    padding: .2em .3em;
    border-radius: 100%;
}

.faq__answer {
    display: none;
    padding: 0 1em 1em 1em;
}

@media (max-width: 750px) {

    .sidebar {
        top: 3.5em;
        bottom: 0%;
        left: -100%;
        z-index: 50;
        width: 280px;
        transition: all ease-in-out .2s;
    }

    .sidebar--active {
        left: 0%;
    }

    .main__content {
        margin: 4em 0 0 0;
        transition: opacity ease-in-out .2s;
    }

    .main__content.sidebar-is-open {
        opacity: .4;
    }

    .item-content {
        overflow: scroll;
    }

    .hero {
        padding: 1em;
    }

    .hero--image {
        padding: 0;
    }

    .hero__foreground {
        padding: 1em;
    }

    .header {
        padding: 0 1em;
        background-color: #fff;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, .15);
        top: 0%;
    }
    
    .header__nav {
        display: none;
        float: none;
    }

    .header__nav li {
        float: none;
    }

    .header__nav a {
        color: var(--primary-color);
    }

    .m-only {
        display: block;
    }

    .itoggler {
        display: inline-block;
        padding: 1em;
    }

    .landing {
        height: 550px;
    }

    .landing__foreground {
        padding: 8em 0 0 0;
    }

    .landing__title {
        font-size: 2em;
    }

    .landing__content {
        margin: 1em;
    }
}